home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d13 / qkmnu105.arc / QM.HLP < prev    next >
Text File  |  1991-01-11  |  26KB  |  620 lines

  1.  
  2. QUIKMENU USERS GUIDE                               (version 1.05-D)
  3. --------------------
  4.  
  5. Located at the top of the screen are several command buttons used
  6. to control various aspects of QuikMenu. To activate a command
  7. button, either click the button with a mouse or hold down the ALT
  8. key and press the underlined letter of the desired command.
  9.  
  10. As you have no doubt already discovered, help can be obtained by
  11. pressing the F1 function key. To exit the help screen, press the
  12. ESC key or select the Done command button.
  13.  
  14. The following is a description of the command buttons:
  15.  
  16. Modify    Allows you to make changes to the menu, such as adding
  17.           programs, setting passwords, changing page titles,
  18.           background color, etc.
  19.  
  20. Page      Displays a list box showing all 20 page titles. Selecting
  21.           a page from the box will display that page on the screen.
  22.           You can also create page buttons to move between specific
  23.           pages.
  24.  
  25. DOS       Allows you to temporarily leave QuikMenu to perform DOS
  26.           operations.
  27.  
  28. Log       Allows you to display, sort and print a report of program
  29.           usage.
  30.  
  31. Exit      Leaves the QuikMenu environment completely.
  32.  
  33. Help      Displays this screen. Use the PAGE DOWN and PAGE UP keys
  34.           to view the help or select the Print command to send the
  35.           file to your printer.
  36.  
  37.  
  38. MODIFYING THE MENU
  39. ------------------
  40.  
  41. The Modify Command is used to add, edit, copy, move or delete a
  42. page or program button. In this mode, you may also change page
  43. titles and the initial menu setup.
  44.  
  45. The Modify command can be Password protected. (See Setup below.)
  46.  
  47.  
  48. ADDING NEW ITEMS TO YOUR MENU
  49. -----------------------------
  50.  
  51. The Add command allows you to add new buttons to your menu. Once
  52. the Add command button is selected, you will be asked which type of
  53. button you want to create: Software Button or Page Button.
  54.  
  55.  
  56. ADDING SOFTWARE BUTTONS
  57. -----------------------
  58.  
  59. Software Buttons allow you to run programs, format disks, backup
  60. directories and so on. If you select Software Button from the Add
  61. dialog box, you will see a screen with the following options: 
  62.  
  63. Speed Key      This is the key on your keyboard that will be used
  64.                to activate the Software Button. Valid choices are
  65.                letters A through Z and numbers 0 through 9.
  66.  
  67. Name           This is the text that will be displayed inside the
  68.                Software Button for reference - usually the name of
  69.                the program that the button will activate.
  70.  
  71. Location       This is the drive and directory where the program
  72.                or DOS option is located. (See List Programs
  73.                below.)
  74.  
  75. Command        This is the command that DOS uses to run the
  76.                program or DOS option. For example, if you normally
  77.                load your word processor by typing WP at the DOS
  78.                prompt (C:\), then enter WP here. (See List
  79.                Programs below.)
  80.  
  81.                If you want to automatically load a document, macro
  82.                or some other file with the program, type the
  83.                file's name at the end of the command line. For
  84.                example:
  85.  
  86.                WP C:\FILES\MEMO.LTR
  87.  
  88.                You may also include any command line options,
  89.                parameters or switches required to make the program
  90.                work.
  91.  
  92.                There are a number of options that can be added to
  93.                the command line that make QuikMenu very powerful.
  94.  
  95.                Placing a pair of [] brackets on the command line
  96.                with a question between them will prompt you
  97.                whenever the item is activated. For example, a
  98.                command like:
  99.  
  100.                FORMAT [Which Drive?]
  101.  
  102.                will prompt you with the question "Which Drive?"
  103.                each time you activate the Format button. Your
  104.                response, if any, is then passed along to the
  105.                FORMAT program.
  106.  
  107.                You can even place multiple questions on the same
  108.                command line. For example:
  109.  
  110.                COPY [Source File?] [Destination?]
  111.  
  112.                You can also have the button display a list of
  113.                files to choose from simply by putting an equal
  114.                sign (=) inside the [] brackets. For example, a
  115.                command like:
  116.  
  117.                WP [Which File?=C:\FILES\*.DOC]
  118.  
  119.                allows you to choose from a list of files in the
  120.                C:\FILES directory that have the extension .DOC.
  121.                The *.DOC is a standard directory mask used by DOS
  122.                to display only certain types of files. See your
  123.                DOS manual for more information about masks.
  124.  
  125.                By using two equal signs (==) instead of one, you
  126.                can search for files across an entire drive. For
  127.                example, a command like:
  128.  
  129.                WP [Which File?==C:\*.DOC]
  130.  
  131.                will find every file with the .DOC extension on C:
  132.                drive, regardless of which directory it's in.
  133.  
  134.                If you use the equal sign (=) or double equal sign
  135.                (==) without a mask, the List Files box will
  136.                display only executable program files (*.BAT, *.COM
  137.                and *.EXE). For example:
  138.  
  139.                [Select a Program=]
  140.  
  141.                You may also combine the above examples and even
  142.                place questions within questions. For example:
  143.  
  144.                WP [Select a File=[Type of File?]]
  145.  
  146.                There is also an option you can use on the command
  147.                line for viewing ASCII text files. For example, to
  148.                view your AUTOEXEC.BAT file, use the command:
  149.  
  150.                @VIEW=C:\AUTOEXEC.BAT
  151.  
  152.                Another command line option built into QuikMenu
  153.                allows you to create and edit ASCII text files. For
  154.                example, to edit your CONFIG.SYS file, use the
  155.                command:
  156.  
  157.                @EDIT=C:\CONFIG.SYS
  158.  
  159.                For more information about QuikMenu's text editor
  160.                see Editor below.
  161.  
  162.                You can even use the @VIEW and @EDIT options with
  163.                other command line functions. For example:
  164.  
  165.                @VIEW=[View what?=C:\*.*]
  166.  
  167.                To run a program without returning to QuikMenu,
  168.                simply place the !BYE option at the end of the
  169.                command line. For example, to run a hard drive
  170.                parking utility use the command:
  171.  
  172.                PARK !BYE
  173.  
  174. List Programs  This option is used to locate a program on your
  175.                hard drive and place the information in the
  176.                Location and Command fields.
  177.  
  178.                Drive and directory names are enclosed within
  179.                brackets ([]) to make them easily distinguishable
  180.                from files. Selecting a directory, such as [WP51],
  181.                displays a list of all program files within that
  182.                directory. Selecting the parent directory, [..],
  183.                moves up one level in the directory tree while the
  184.                [\] symbol takes you all the way back to the root
  185.                directory of the current drive.
  186.  
  187.                The find option allows you to change what type of
  188.                files will be displayed in the List Programs
  189.                window. You may use any standard DOS file name
  190.                specifications; for example, the wild card options
  191.                * and ?, parts of file names, extensions and even
  192.                full file names.
  193.                
  194.                Select the Search Entire Drive option to find files
  195.                across an entire drive.
  196.  
  197. Password       This option allows you to protect a Software Button
  198.                from being activated and/or modified by
  199.                unauthorized users.
  200.  
  201. Options        This option allows you to select the fill, text and
  202.                border colors for the Software Button. You can also
  203.                change the button's font style and size.
  204.  
  205. Pause          Select this option if you want the program to pause
  206.                after it's finished running and prompt you with a
  207.                "Strike any key when ready..." message.
  208.  
  209. Ask For File   This option inserts a question ([Select a
  210.                File=*.*]) into the command line requesting
  211.                QuikMenu to display a list of files whenever this
  212.                button is activated.
  213.  
  214. Editor         This option allows you to create or modify DOS
  215.                batch files. Selecting this option starts
  216.                QuikMenu's text editor and automatically loads any
  217.                batch file found at the beginning of the command
  218.                line. If the command line is empty or does not
  219.                contain a file name then the editor is evoked with
  220.                a blank screen ready for text entry. If the file on
  221.                the command line does not already exist, you will
  222.                be asked if you want to create it. File size is
  223.                limited only by the amount of available RAM.
  224.  
  225.                Editor commands include:
  226.  
  227.                Key                 Action
  228.                ------------------------------------------------
  229.                UP ARROW            Up one line
  230.                DOWN ARROW          Down one line
  231.                LEFT ARROW          Left one character
  232.                RIGHT ARROW         Right one character
  233.                PGUP                Up one screen
  234.                PGDN                Down one screen
  235.                HOME                Beginning of line
  236.                END                 End of line
  237.                CTRL + HOME         Top of file
  238.                CTRL + END          End of file
  239.                TAB                 Inserts 5 spaces
  240.                INSERT              Toggles insert/overwrite
  241.                CTRL + T            Erase current line
  242.                CTRL + Y            Delete line
  243.                ENTER               Inserts a line (insert mode)
  244.                DEL                 Delete right
  245.                BACKSPACE           Delete left
  246.                ALT + S             Save and continue editing
  247.                ESC, ALT + D        Save and exit
  248.  
  249.                After you have completed your modifications, choose
  250.                the Done command from the top of the screen. You
  251.                will be asked if you want to save the changes. If
  252.                the file already exists, you will also be asked if
  253.                you want to replace it or save the changes under a
  254.                new name. No backup file (*.BAK) will be created in
  255.                either circumstance.
  256.  
  257.                You can also use the editor to modify other ASCII
  258.                text files (see Command above).
  259.  
  260.  
  261. ADDING PAGE BUTTONS
  262. -------------------
  263.  
  264. Page Buttons are used to move between pages within the menu. For
  265. example, page one might contain a button labeled "Games" which is
  266. linked to page five. Page five might contain several items related
  267. to game software as well as a "Go Back" button for returning to
  268. page one.
  269.  
  270. If you select Page Button from the Add dialog box, you will see a
  271. screen with the following options:
  272.  
  273. Speed Key      This is the key on your keyboard that will be used
  274.                to activate the Page Button. Valid choices are
  275.                letters A through Z and numbers 0 through 9.
  276.  
  277. Name           This is the text that will be displayed inside the
  278.                Page Button for reference - usually a description
  279.                of the contents of the page the button is linked
  280.                to.
  281.  
  282. Link to...     In this field, type the number of the page you want
  283.                to link this button to. Valid page numbers are 1 to
  284.                20. (See List Pages below.)
  285.  
  286. List Pages     This option serves as an alternative method for
  287.                filling in the Name and Link fields above.
  288.                Selecting this option displays a dialog box
  289.                containing a list of page titles for all 20
  290.                QuikMenu pages. Use the UP and DOWN arrow keys to
  291.                reach the page you want and press ENTER.
  292.  
  293. Options        This option allows you to select the fill, text and
  294.                border colors for the Page Button. You can also
  295.                change the buttons font style and size.
  296.  
  297.  
  298. EDITING MENU ITEMS
  299. ------------------
  300.  
  301. The Edit option allows you to change the appearance and behavior of
  302. a button. After selecting the Edit command, select the button you
  303. want to change by typing its speed key or clicking it with the
  304. mouse. A dialog box like the one used to create the item will
  305. appear. (See Adding Software and Page Buttons above.)
  306.  
  307.  
  308. COPYING MENU ITEMS
  309. ------------------
  310.  
  311. The Copy command will allow you to make an exact duplicate of an
  312. existing button. Copied buttons can be placed anywhere on the
  313. current page or even moved to another page by pressing the PAGE UP
  314. or PAGE DOWN keys. This is handy when you want to place the same
  315. button on multiple pages. (See Moving Menu Items below.)
  316.  
  317.  
  318. MOVING MENU ITEMS
  319. -----------------
  320.  
  321. The Move command will allow you to change the position of a button.
  322. To move a button, select the Move command from the top of the
  323. screen. Next, select a button by typing its speed key or clicking
  324. it with a mouse. Position the button by using the arrow keys or by
  325. moving the mouse. To move the button to another page, press the
  326. PAGE UP or PAGE DOWN keys until the desired page appears on the
  327. screen. To anchor the button, press ENTER or click the mouse. From
  328. the modify mode, you can also move a button by typing its speed key
  329. or clicking it with a mouse without selecting the Move command.
  330.  
  331.  
  332. SIZING MENU ITEMS
  333. -----------------
  334.  
  335. The Size command allows you to alter the dimensions of a button. 
  336. To size a button, select the Size command from the top of the
  337. screen. Next, select a button by typing its speed key or clicking
  338. it with a mouse. Size the button by using the arrow keys or by
  339. moving the mouse. When the button has reached the desired
  340. proportions, press ENTER or click the mouse. The button cannot be
  341. smaller than the width and height of the text inside it.
  342.  
  343.  
  344. DELETING MENU ITEMS
  345. -------------------
  346.  
  347. Use the Delete command to remove unwanted buttons from your menu.
  348. To delete a button, select the Delete command from the top of the
  349. screen. Next, select a button by typing its speed key or clicking
  350. it with the mouse. You will be asked if you are sure you want to
  351. delete the button. Press ENTER to delete it or ESC to cancel.
  352.  
  353.  
  354. CHANGING PAGE TITLES
  355. --------------------
  356.  
  357. The Title command allows you to assign titles to each of QuikMenu's
  358. 20 pages. Menu titles appear at the top of each page and may
  359. contain up to 40 characters. This allows you to identify your menu
  360. screens with descriptive names like "DOS Commands", "Games",
  361. "Sally's Programs" or whatever.
  362.  
  363. When you choose the Title command, a dialog box will appear with
  364. the title of the current page already displayed. To change the
  365. title, backspace over the existing text and type the new title. You
  366. can also change the title of other pages by pressing the PAGE UP or
  367. PAGE DOWN keys until the desired title appears in the text field.
  368. The number of the affected page is displayed at the top of the
  369. dialog box.
  370.  
  371.  
  372. USING THE SETUP COMMAND
  373. -----------------------
  374.  
  375. The Setup command provides you with the means to personalize many
  376. features of QuikMenu. You can use Setup to change the background
  377. color, set the date and time, change the mouse speed and set
  378. password protection.
  379.  
  380. SCREEN
  381.  
  382. Background     You can change QuikMenu's background color by
  383.                holding down the ALT key and pressing B (ALT-B)
  384.                until the desired color is highlighted. If you have
  385.                a mouse, just click on the color you want.
  386.  
  387. Sound          Sound effects can be turned on or off by pressing
  388.                ALT-S or clicking the sound effects button with a
  389.                mouse. (The option is on when an X appears inside
  390.                the button.)
  391.  
  392. Confirm        Confirmation of applications can be turned on or
  393.                off by pressing ALT-C or clicking the confirm
  394.                applications button with a mouse. Select this
  395.                option to request a confirmation (Yes/No) before
  396.                activating a program.
  397.  
  398. Interface      QuikMenu's 3-D interface can be turned on or off by
  399.                pressing ALT-I or clicking the 3-D button with a
  400.                mouse.
  401.  
  402. Speed Keys     The speed keys can be turned on or off by pressing
  403.                ALT-D or clicking the display button with a mouse.
  404.                This option allows you to hide the speed key
  405.                characters normally displayed in front of the
  406.                button text. 
  407.  
  408. Display Grid   QuikMenu's grid display can be turned on or off by
  409.                pressing ALT-G or clicking the display grid button
  410.                with a mouse.
  411.  
  412. Snap to Grid   The grid snap can be turned on or off by pressing
  413.                ALT-S or clicking the snap to grid button with a
  414.                mouse. This grid is useful when moving and sizing
  415.                buttons.
  416.  
  417. Screen Saver   The Screen Saver option allows you to set the time
  418.                interval for the built-in screen saver utility. The
  419.                screen saver continuously monitors your mouse and
  420.                keyboard. If no activity has occurred for a period
  421.                of time equal to the chosen interval, then the
  422.                QuikMenu screen is replaced by an exploding clock.
  423.                To restore QuikMenu, press any key or move the
  424.                mouse. The screen saver may also be activated by
  425.                pressing the F5 function key. NOTE: The screen
  426.                saver only works while you are in QuikMenu, not in
  427.                other programs.
  428.  
  429. PASSWORD
  430.  
  431. The Password function is used to prevent unauthorized users from
  432. running the DOS Shell, modifying the menu, viewing the Time Log and
  433. leaving QuikMenu. Type your password in the text field and select
  434. the items you want to be protected. Protected items appear with an
  435. X next to them. If you use this feature, be sure to remember your
  436. password. A forgotten password means you will not be able to access
  437. the protected options.
  438.  
  439. TIME LOG
  440.  
  441. The Time Log option allows you to turn the log on or off and
  442. to change the name of the file used to store the log information.
  443. The default name of the log file is QM.LOG. To turn the log on or
  444. off, just hold down the ALT key and press the letter K. If you have
  445. a mouse, just click on the "Keep a time log..." button. 
  446.  
  447. It's a good idea to change the name of the time log periodically -
  448. once a month or once a quarter if you use a variety of programs
  449. each day. The log size is limited only by the space available on
  450. your hard drive. However, the smaller the file, the faster the
  451. searching and sorting will be. (See Log below.)
  452.  
  453. DATE/TIME
  454.  
  455. The system Date/Time can be set by tabbing to each field and
  456. changing the numeric value to match the date and time. AM or PM
  457. can be selected by holding down the Alt key and pressing A or P. If
  458. you have a mouse you can just click on the AM or PM buttons. NOTE:
  459. This function may not work on some XTs since there is no standard
  460. among XT clock cards.
  461.  
  462. MOUSE
  463.  
  464. Use this option to adjust the sensitivity of your mouse. The higher
  465. the setting, the less desk space you'll need to move the mouse
  466. across the screen.
  467.  
  468.  
  469. LEAVING THE MODIFY MODE
  470. -----------------------
  471.  
  472. When you have finished modifying your menu, select the Done command
  473. to save your changes and return to the main mode.
  474.  
  475.  
  476. USING THE TIME LOG
  477. ------------------
  478.  
  479. QuikMenu's Time Log can be a valuable resource for consultants,
  480. secretaries, lawyers or anyone who keeps track of expenses on the
  481. basis of time. The Time Log allows you to view, sort and print
  482. reports based on how long and how often you use your computer.
  483.  
  484. The log keeps track of programs by the names you assign to your
  485. Software Buttons. It may be helpful to keep a separate pages of
  486. Software Buttons for specific projects and give each button a
  487. unique project name. For example, page six could have a "Jones Word
  488. Processor", a "Jones Database" and a "Jones Spreadsheet".
  489.  
  490. If you select the Search command button while in Log a dialog box
  491. with the following options will appear:
  492.  
  493. Report Title   This is the title for the report that will be
  494.                printed at the top of each page.
  495.  
  496. Sort by        Select the Program button to sort log entries
  497.                alphabetically by name. Choose the Date button to
  498.                sort log entries in chronological order.
  499.  
  500. View as        This option controls the level of detail displayed
  501.                in the time log. The Summary option displays each
  502.                log entry only once and shows the total number of
  503.                times each item was used. The Detail option shows
  504.                time in, time out and the total time for each item.
  505.  
  506. Find           Use this option to locate specific programs or
  507.                projects within the time log. For example, typing
  508.                "Word" will find log entries for "WordPerfect",
  509.                "Wordstar" and "Word Processing" - anything that
  510.                begins with "WORD".
  511.  
  512. Start date     If you want to search a specific date range, type
  513.                in the month, day and year in numeric format, ie:
  514.                10-12-1990. Leave this field blank to search from
  515.                the beginning of the file.
  516.  
  517. End date       If you want to search a specific date range, type
  518.                in the month, day and year in numeric format, ie:
  519.                10-22-1990. Leave this field blank to search to the
  520.                end of the file.
  521.  
  522. To turn the Time Log on or off or to change the log file name, see
  523. Setup above. 
  524.  
  525.  
  526. USING QUIKMENU WITH TSR PROGRAMS
  527. --------------------------------
  528.  
  529. This option is for those who like to use those handy Pop-Up
  530. calculators, note pads, outliners, etc. QuikMenu includes a handy
  531. TSR window that allows you to easily access your favorite TSR
  532. utilities.
  533.  
  534. Simply load your TSR's as you normally do, then activate QuikMenu.
  535. From the QuikMenu main or modify screens, press the F3 function
  536. key. Quikmenu's graphical display is replaced by a text-only
  537. window. At this point, input the key combination required to bring
  538. up your TSR. When you're finished, exit your TSR and press ESC to
  539. return to QuikMenu.
  540.  
  541.  
  542. USING QUIKMENU ON A NETWORK
  543. ---------------------------
  544.  
  545. QuikMenu can be used with Local Area Networks. Network users should
  546. start Quikmenu by entering QNET "user-name" at the DOS prompt. For
  547. example:
  548.  
  549. QNET Doris
  550.  
  551. - or -
  552.  
  553. QNET Fred
  554.  
  555. If you don't have a QNET file, try installing QuikMenu again. Be
  556. sure to specify that you're using QuikMenu on a network.
  557.  
  558. Network users may also wish to use the !USER variable on the
  559. command line of Program Buttons. When a button with this variable
  560. is activated, the user's name will be substituted for !USER in the
  561. command line. For example, if each user had their own directory on
  562. the network, you could create a program button that would start a
  563. program and list files from the user's directory. The command might
  564. look like:
  565.  
  566. WP [Files?=F:\!USER\*.*]
  567.  
  568. This variable can be used in any situation that requires the user's
  569. name, ie: custom batch files, etc.
  570.  
  571.  
  572. COMMAND LINE OPTIONS
  573. --------------------
  574.  
  575. You can specify several options when starting QuikMenu. An option
  576. consists of a slash (/) followed by an option letter followed by
  577. information about that option.
  578.  
  579. Video Mode     QuikMenu automatically determines what type of
  580.                monitor you have and loads the appropriate software
  581.                driver. If you have an unusual video card, you may
  582.                want to override the built-in video detection
  583.                routine. The /G allows you to run QuikMenu in a
  584.                variety of different graphics modes depending on
  585.                your hardware.
  586.  
  587.                WARNING: CHOOSING AN INCOMPATIBLE DRIVER MAY CAUSE
  588.                UNEXPECTED RESULTS AND SOME EXTREME CASES DAMAGE TO
  589.                YOUR MONITOR OR VIDEO CARD. DON'T TRY THIS OPTION
  590.                UNLESS YOU KNOW EXACTLY WHAT YOU ARE DOING.
  591.  
  592.                Usage: /Gx   x = one of the commands below
  593.  
  594.                Video Mode          Command
  595.                ---------------------------
  596.                Hercules              7.0
  597.                CGA                   1.4
  598.                MCGA 640x200          2.4
  599.                MCGA 640x480          2.5
  600.                EGA                   3.1
  601.                EGA 64K               4.0
  602.                VGA                   9.2
  603.                AT&T 640x400          8.5
  604.                IBM 8514 640x480      6.0
  605.                IBM 8514 1024x768     6.1
  606.  
  607. Other Menus    This option can be used to create or access other
  608.                QuikMenu (*.MNU) menu files.
  609.  
  610.                Usage: /Mx   x = filename
  611.  
  612.                Example: QM /Mmymenu.mnu
  613.  
  614. Hello Message  The /H option displays a greeting message each time
  615.                QuikMenu is loaded. Possible messages include:
  616.                "Good Morning", "Good Afternoon" and "Good Evening"
  617.                depending on what time of day it is.
  618.  
  619.                Usage: /H
  620.